Add TAL-Reverb-II plugin to test
[juce-lv2.git] / juce / source / extras / the jucer / src / ui / jucer_ComponentLayoutPanel.h
blob0fc6b0b3553e753f3595b88b2b39854059e88c99
1 /*
2 ==============================================================================
4 This file is part of the JUCE library - "Jules' Utility Class Extensions"
5 Copyright 2004-11 by Raw Material Software Ltd.
7 ------------------------------------------------------------------------------
9 JUCE can be redistributed and/or modified under the terms of the GNU General
10 Public License (Version 2), as published by the Free Software Foundation.
11 A copy of the license is included in the JUCE distribution, or can be found
12 online at www.gnu.org/licenses.
14 JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18 ------------------------------------------------------------------------------
20 To release a closed-source product which uses JUCE, commercial licenses are
21 available: visit www.rawmaterialsoftware.com/juce for more information.
23 ==============================================================================
26 #ifndef __JUCER_COMPONENTLAYOUTPANEL_JUCEHEADER__
27 #define __JUCER_COMPONENTLAYOUTPANEL_JUCEHEADER__
29 #include "jucer_ComponentLayoutEditor.h"
30 #include "jucer_EditingPanelBase.h"
33 //==============================================================================
34 /**
36 class ComponentLayoutPanel : public EditingPanelBase
38 public:
39 //==============================================================================
40 ComponentLayoutPanel (JucerDocument& document, ComponentLayout& layout);
41 ~ComponentLayoutPanel();
43 ComponentLayout& getLayout() const throw() { return layout;}
45 void updatePropertiesList();
46 const Rectangle<int> getComponentArea() const;
48 const Image createComponentSnapshot() const;
50 private:
51 ComponentLayout& layout;
55 #endif // __JUCER_COMPONENTLAYOUTPANEL_JUCEHEADER__